From: Nick Roberts Date: Mon, 23 Apr 2007 03:32:12 +0000 (+0000) Subject: (button): Inherit from link face on a tty. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~639 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=ab996cceae342fd13ef3c7c0c93b9ed45dae2df6;p=emacs.git (button): Inherit from link face on a tty. --- diff --git a/lisp/button.el b/lisp/button.el index 20c2c0692e6..8c3681854e7 100644 --- a/lisp/button.el +++ b/lisp/button.el @@ -53,8 +53,9 @@ ;; Use color for the MS-DOS port because it doesn't support underline. ;; Also for the linux console. -(defface button '((((type pc tty) (class color)) +(defface button '((((type pc) (class color)) (:foreground "lightblue")) + (((type tty)) (:inherit link)) (t :underline t)) "Default face used for buttons." :group 'basic-faces)